|
Server : LiteSpeed System : Linux host 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : idnco5810 ( 1093) PHP Version : 8.2.29 Disable Function : NONE Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh
#set -e
CONFDIR=/usr/local/lsws/lsphp81/etc/php/8.1/mods-available
if [ "$1" = "configure" ]; then
phpini="/usr/local/lsws/lsphp81/etc/php/8.1/litespeed/php.ini"
ucf /usr/local/lsws/lsphp81/lib/php/8.1/php.ini-production $phpini
ucfr lsphp81 $phpini
if [ -e /usr/local/lsws/lsphp81/bin/php-maintscript-helper ] ; then
. /usr/local/lsws/lsphp81/bin/php-maintscript-helper
elif [ -e /usr/lib/php/php-maintscript-helper ] ; then
. /usr/lib/php/php-maintscript-helper
fi
if [ -e /usr/local/lsws/lsphp81/bin/phpquery ] ; then
mods=$(/usr/local/lsws/lsphp81/bin/phpquery -M -v 8.1)
elif [ -e /usr/sbin/phpquery ] ; then
mods=$(phpquery -M -v 8.1)
fi
for mod in $mods; do
if [ -e /usr/local/lsws/lsphp81/bin/phpenmod ] ; then
/usr/local/lsws/lsphp81/bin/phpenmod 8.1 litespeed $mod
elif [ -e /usr/sbin/phpenmod ] ; then
phpenmod 8.1 litespeed $mod
fi
done
fi
exit 0